home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib9
/
v_11_06
/
1106014a
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
224 b
|
14 lines
#include <wchar.h>
static wchar_t hirigana = wctype("hirigana");
int ishiri(wchar_t *wcs)
{ /* test each element of string */
while (*wcs)
if (!iswctype(*wcs++, hirigana))
return (0);
return (1);
}